kRTGetJTAddress and kRTGetJTAddressA5
The operationkRTGetJTAddress
returns the address of the code that the specified function address points to in the current A5, andkRTGetJTAddressA5
does the same for a specified A5 world.The
fRTParams
structure (page B-2) used with these operations is as follows:
struct RTGetJTAddrParam { void*fJTAddr; void*fCodeAddr; }; typedef struct RTGetJTAddrParam RTGetJTAddrParam;The
- In the classic 68K runtime environment,
fJTAddr
is a function address. In the CFM-68K runtime environment,fJTAddr
is the address of a transition vector.fCodeAddr
contains the returned code address. If the segment is not loaded,fCodeAddr
is set to0
.
kRTGetJTAddress
operation assumes the current A5 world, whileRTGetJTAddressA5
lets you specify one in thefA5
field of theRTPB
structure (page B-2).